home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Belgian Amiga Club - ADF Collection
/
BS1 part 05.zip
/
BS1 part 5
/
IM_Install3.adf
/
piarc.LZH
/
tess.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1992-02-29
|
2KB
|
91 lines
/*
* TESS.rexx ( calls the TESSELLATE command )
*
* Written by: Barry Chalmers and Ben Williams
* Last Update: December 11th, 1991
* Revision: 1.01
* For: Black Belt Systems image processing series IM, IM F/c, and IP.
*/
/*
* open rexxsupport.library -- needed for some functions
*/
if ~show('L',"rexxsupport.library") then do
if addlib('rexxsupport.library',0,-30,0) then do
/* everything's ok */
end;
else do
say 'We Have A Library Problem, Unable To Load "rexxsupport.library"';
say 'Cannot operate this module without the library - sorry!';
exit 10;
end;
end;
/*
* This will automatically direct the script to the proper
* software, if it is running. No matter where the script is
* launched from. :^) I sure do like ARexx. :^))
*/
prtnme = 'IP_Port'; /* assume Image Professional */
if show('P','IP_Port') = 0 then do
if show('P','IM_Port') = 0 then do
say "Can't find image processor's ARexx port!!!"; /* not running? */
say "This script requires IP, IM or IM F/c to run!";
exit(20);
end;
else do
prtnme = 'IM_Port'; /* That's the thing about assumptions... */
end; /* We make em, user's break em. */
end;
address(prtnme);
/*
* This code attempts to read a file called "picmdpath" from REXX:
* If it can't find it, the script will assume that the commands
* associated with this PI Module are in "c:". If the file exists,
* the script will look in the path that is specified in the file.
* If you create this file, you MUST put a complete, correct path
* in it; if the commands are in a sub-directory, you have to put
* the trailing slash on the path (like, device:dir/).
*
*/
cmdpath = 'c:';
if open(fhandle,'rexx:picmdpath','read') then /* open the file */
do
cmdpath = readln(fhandle);
call close(fhandle); /* close the file */
end
'tofront';
'fchide';
options results;
'askprop "Triangle edge:" 20 1 200';
edge = result;
options;
'backuptoundo';
'area';
options results;
'jackin';
jack = result;
'current';
bufdata = result;
options;
parse var bufdata bname ',' bnum ',' brest
'lockimage '||bnum;
address command cmdpath||'tessellate '||jack||' '||edge;
'unlockimage '||bnum;
address(prtnme);
'tofront';
'fcshow';
'redraw';
address;
exit 0;